Completed
Pull Request — develop (#110)
by Xaver
01:10
created

module.exports   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 8

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 2
c 1
b 0
f 0
nc 2
dl 0
loc 8
rs 9.4285
nop 0
1
module.exports = function (gulp, plugins, config, env) {
2
  return function javascript() {
3
    return gulp.src('app.js')
4
      .pipe(env.development(plugins.sourcemaps.init()))
5
      .pipe(plugins.requirejsOptimize(env.production() ? config.requireJs.prod : config.requireJs.dev))
6
      .pipe(env.production(plugins.uglify({ preserveComments: 'license' })))
7
      .pipe(env.development(plugins.sourcemaps.write('.', { addComment: true })))
8
      .pipe(gulp.dest(config.build));
9
  };
10
};
11